const google.golang.org/grpc.maxInt

7 uses

	google.golang.org/grpc (current package)
		rpc_util.go#L571: 	if int64(length) > int64(maxInt) {
		rpc_util.go#L572: 		return 0, nil, status.Errorf(codes.ResourceExhausted, "grpc: received message larger than max length allowed on current machine (%d vs. %d)", length, maxInt)
		service_config.go#L36: const maxInt = int(^uint(0) >> 1)
		service_config.go#L270: 			if *m.MaxRequestMessageBytes > int64(maxInt) {
		service_config.go#L271: 				mc.MaxReqSize = newInt(maxInt)
		service_config.go#L277: 			if *m.MaxResponseMessageBytes > int64(maxInt) {
		service_config.go#L278: 				mc.MaxRespSize = newInt(maxInt)